home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 3 / CD ACTUAL 3.iso / linux / system / tkhtml-2.3 / tkhtml-2 / tkHTML-2.3 / tix / StdDlgB.tcl < prev    next >
Encoding:
Text File  |  1995-02-12  |  439 b   |  14 lines

  1. #----------------------------------------------------------------------
  2. #
  3. #         S t a n d a r d   D i a l o g   B u t t o n s
  4. #
  5. #----------------------------------------------------------------------
  6. proc tixStdDlgBtns {w args} {
  7.     eval tixDlgBtns $w $args
  8.     $w add ok     -text OK     -width 6
  9.     $w add apply  -text Apply  -width 6
  10.     $w add cancel -text Cancel -width 6
  11.     $w add help   -text Help   -width 6
  12.     return $w
  13. }
  14.